home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / mainmenu.dxr / Internal_6_navigator box.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  566 b   |  16 lines

  1. property psp_mysprite, pf_ratio
  2. global gsp_backgroundsprite, gsp_navigatordisplaysprite
  3.  
  4. on beginSprite me
  5.   psp_mysprite = sprite(me.spriteNum)
  6.   pf_ratio = float(gsp_backgroundsprite.member.width - (the stage).rect.width) / float(psp_mysprite.width - gsp_navigatordisplaysprite.width)
  7. end
  8.  
  9. on updatenavigator me
  10.   gsp_navigatordisplaysprite.locH = psp_mysprite.locH - (float(gsp_backgroundsprite.left) / pf_ratio)
  11. end
  12.  
  13. on getPropertyDescriptionList me
  14.   return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
  15. end
  16.